﻿/* style start */
:root {
    --green: #4a5c44;
    --green-dark: #283527;
    --gold: #000000;
    --cream: #faf7ef;
    --ink: #1f241f;
    --muted: #626a62;
    --line: rgba(31, 36, 31, 0.12);
    --shadow: 0 18px 45px rgba(31, 36, 31, 0.16);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    color: var(--ink);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.65;
    background: #fff;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  .container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
  .topbar {
    width: 100%;
    padding: 8px 0;
  }

  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .socials {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .top-actions {
    margin-left: auto;
  }

  .top-actions a,
  .icon-btn {
    color: inherit;
    text-decoration: none;
  }
  .socials, .top-actions, .footer-socials { display: flex; align-items: center; gap: 10px; }
  .icon-btn {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(253, 253, 253, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .icon-btn:hover { background: rgb(255, 255, 255); transform: translateY(-1px); }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }
  .nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--green-dark);
    white-space: nowrap;
  }
  .brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font: 700 18px "Montserrat", sans-serif;
  }
  .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 6px;
    background: var(--green);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 12px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .nav-links > li > a:hover { color: var(--gold); }
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: min(680px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mega-card {
    min-height: 92px;
    display: flex;
    align-items: end;
    padding: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .mega-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.64));
  }
  .mega-card span { position: relative; }
  .hero {
    min-height: calc(100vh - 120px);
    display: grid;
    align-items: center;
    color: #fff;
    background:linear-gradient(90deg, rgba(22, 29, 21, 0.76), rgba(22, 29, 21, 0.28)),url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=80") center/cover;
  }
  .hero-content { width: min(720px, 100%); padding: 88px 0; }
  .eyebrow {
    margin: 0 0 10px;
    color: #f4df9f;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }
  h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.12; margin: 0; }
  h1 { font-size: clamp(42px, 8vw, 84px); }
  .hero p { max-width: 620px; margin: 22px 0 30px; font-size: clamp(16px, 2vw, 20px); }
  .actions { display: flex; flex-wrap: wrap; gap: 12px; }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--gold); color: #fff; }
  .btn-outline { border-color: rgba(255, 255, 255, 0.72); color: #fff; }
  .section { padding: 72px 0; }
  .section-header { max-width: 760px; margin: 0 auto 34px; text-align: center; }
  .section-header h2 { color: var(--green-dark); font-size: clamp(30px, 4vw, 48px); }
  .section-header p { margin: 12px 0 0; color: var(--muted); }
  .intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
  }
  .intro-copy h2 { margin-bottom: 18px; color: var(--green-dark); font-size: clamp(32px, 4vw, 52px); }
  .intro-copy p { color: var(--muted); }
  .image-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .image-tile, .feature-image, .card-image, .facility { background-size: cover; background-position: center; }
  .image-tile { min-height: 330px; }
  .image-tile:first-child { margin-top: 34px; }
  .accommodation { background: var(--cream); }
  .room {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .room-copy { padding: clamp(28px, 5vw, 56px); }
  .room-copy h3 { color: var(--green-dark); font-size: clamp(28px, 4vw, 44px); }
  .room-copy p { color: var(--muted); }
  .amenities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 600;
  }
  .amenities li { display: flex; align-items: center; gap: 9px; }
  .amenities i { color: var(--gold); }
  .feature-image { min-height: 420px; }
  .facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 420px; }
  .facility {
    position: relative;
    display: flex;
    align-items: end;
    padding: 24px;
    color: #fff;
    overflow: hidden;
  }
  .facility::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.72));
  }
  .facility h3 { position: relative; font-size: 28px; }
  .cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .choice-card { border: 1px solid var(--line); background: #fff; overflow: hidden; }
  .choice-card:first-child { grid-column: span 2; }
  .card-image { aspect-ratio: 4 / 3; }
  .choice-card a {
    display: block;
    padding: 16px;
    color: var(--green-dark);
    font-weight: 700;
    text-transform: uppercase;
  }
  .contact-band { background: var(--green-dark); color: #fff; }
  .contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .contact-inner h2 { font-size: clamp(28px, 4vw, 44px); }
  .contact-inner p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.78); }
  .whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.30);
  }

  @media (max-width: 980px) {
    .topbar-inner { justify-content: center; }
    .top-actions { display: none; }
    .nav { flex-wrap: wrap; }
    .nav-toggle { display: inline-grid; place-items: center; }
    .nav-links {
      width: 100%;
      display: none;
      flex-direction: column;
      align-items: stretch;
      padding: 10px 0 18px;
    }
    .nav-links.open { display: flex; }
    .nav-links > li > a { width: 100%; justify-content: space-between; border-bottom: 1px solid var(--line); }
    .mega-menu {
      position: static;
      width: 100%;
      grid-template-columns: repeat(2, 1fr);
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      display: none;
    }
    .has-mega.open .mega-menu { display: grid; }
    .intro-grid, .room, .footer-grid { grid-template-columns: 1fr; }
    .contact-inner { align-items: flex-start; flex-direction: column; }
    .facilities-grid, .cards-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 620px) {
    .container { width: min(100% - 24px, 1180px); }
    .brand { font-size: 22px; }
    .hero { min-height: 620px; }
    section { padding: 54px 0; }
    .image-pair, .amenities, .facilities-grid, .cards-grid, .mega-menu { grid-template-columns: 1fr; }
    .choice-card:first-child { grid-column: span 1; }
    .footer-bottom { flex-direction: column; }
  }
/* style end */
/* footer start */
  .jain-footer {
    background-color: #4a5c44;
    color: #e8e4dc;
    font-family: Georgia, 'Times New Roman', serif;
    padding: 60px 60px 0;
  }

  .jain-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .jain-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 50px;
  }

  .jain-brand {
    font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: 400;
    color: #f0ece3;
    margin: 0 0 16px;
  }

  .jain-desc {
    font-size: 13.5px;
    line-height: 1.8;
    color: #c8c4bc;
    margin-bottom: 22px;
  }

  .jain-socials {
    display: flex;
    gap: 10px;
  }

  .jain-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8c4bc;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .jain-social-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #f0ece3;
  }

  .jain-col-title {
    font-size: 16px;
    font-weight: 400;
    color: #f0ece3;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .jain-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .jain-links li {
    margin-bottom: 11px;
  }

  .jain-links a {
    color: #c8c4bc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
  }

  .jain-links a:hover {
    color: #f0ece3;
    padding-left: 6px;
  }

  .jain-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: #c8c4bc;
    line-height: 1.6;
  }

  .jain-contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #c8c4bc;
  }

  .jain-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    color: #a8a49c;
  }

  .jain-bottom a {
    color: #c8c4bc;
    text-decoration: none;
  }

  .jain-bottom a:hover {
    color: #f0ece3;
  }

  /* ── Tablet: 2 columns ── */
  @media (max-width: 900px) {
    .jain-footer {
      padding: 50px 40px 0;
    }
    .jain-grid {
      grid-template-columns: 1fr 1fr;
      gap: 36px;
    }
  }

  /* ── Large Mobile: still 2 columns, tighter ── */
  @media (max-width: 600px) {
    .jain-footer {
      padding: 40px 24px 0;
    }
    .jain-grid {
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .jain-brand {
      font-size: 17px;
      letter-spacing: 3px;
    }
  }

  /* ── Small Mobile: 1 column ── */
  @media (max-width: 420px) {
    .jain-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .jain-bottom {
      flex-direction: column;
      text-align: center;
    }
  }

  /* footer  ends */


  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

  /* ══════════════════════════════════════
    GOLDEN HEADING
  ══════════════════════════════════════ */
  .golden-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(120deg, #BF8A30 0%, #F5D07A 40%, #D4A43A 60%, #9A6E1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 14px;
    margin-bottom: 20px;
  }

  /* Decorative underline — centered, visible */
  .golden-heading::after {  
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4A43A, transparent);
  }

  /* ══════════════════════════════════════
   ABOUT SECTION TEXT
  ══════════════════════════════════════ */
  .about .text p {
    font-family: sans-serif;
    font-size: 15px;
    text-align: center;
    line-height: 1.9;
    color: #444;
    margin-bottom: 14px;
  }

  .about .text p b {
    color: #9A6E1F;
  }

  .about .text p a b {
    color: #D4A43A;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid #D4A43A;
    transition: color 0.2s;
  }

  .about .text p a:hover b {
    color: #9A6E1F;
  }

  /* ── Images ── */
  .about .col-md-6 img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .about .col-md-6 img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  /* ══════════════════════════════════════
   SECTION HEADER (Accommodations banner)
  ══════════════════════════════════════ */
  .image-blocks-header .section-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0 20px 0;
    overflow: hidden;
  }

  .image-blocks-header .section-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .image-blocks-header .section-header .container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 20px;
  }

  .image-blocks-header .section-header h2.title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #BF8A30 0%, #F5D07A 40%, #D4A43A 60%, #9A6E1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
  }

  .image-blocks-header .section-header p {
    font-family: sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    letter-spacing: 0.03em;
    line-height: 1.6;
  }

  /* ══════════════════════════════════════
   ROOM BLOCKS
  ══════════════════════════════════════ */
  .blocks {
    display: flex;
    align-items: stretch;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .blocks-left  { flex-direction: row; }
  .blocks-right { flex-direction: row-reverse; }

  .blocks .item {
    flex: 1;
    padding: 40px;
    background: #fff;
    display: flex;
    align-items: center;
  }

  .blocks .text { width: 100%; }

  .blocks .image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
  }

  .blocks .image img { display: none; }

  /* ── Room Title ── */
  .blocks .text h2.title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #BF8A30 0%, #F5D07A 40%, #D4A43A 60%, #9A6E1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
  }

  .blocks .text > p {
    font-family: sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  /* ── Room Facilities ── */
  .room-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 10px;
  }

  .room-facilities figure { margin: 0; }

  .room-facilities figcaption {
    font-family: sans-serif;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .room-facilities i {
    color: #D4A43A;
    font-size: 16px;
  }

  /* ── View Details Button ── */
  .book { margin-top: 24px; }

  .book .btn-danger {
    background: linear-gradient(135deg, #BF8A30, #D4A43A);
    border: none;
    color: #fff;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }

  .book .btn-danger:hover {
    background: linear-gradient(135deg, #9A6E1F, #BF8A30);
    transform: translateY(-2px);
  }

  /* ══════════════════════════════════════
   RESPONSIVE
  ══════════════════════════════════════ */
  @media (max-width: 768px) {
    .blocks { flex-direction: column !important; }
    .blocks .image { min-height: 250px; }
    .blocks .item { padding: 24px; }
  }

  .page-header {
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(5px);        /* ← adjust blur level */
    transform: scale(1.1);    /* ← prevents white edges from blur */
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;               /* ← keeps text sharp above blur */
}